This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
RE: Deleting the profile in the Archive db fixed my problem ~Arnold Retookonyetsi 31.Jan.03 09:54 AM a Web browser Notes Client 6.0Windows 98
Thanx to Brett and Bob, the combi code solved the issue..
All who had already deployed R6 to their user should create a mail with a hotspot button, and send it to their users. Ask them to copy the mail to their archive database and click the button from there...
code:
Sub Click(Source As Button)
Set session= New NotesSession
Set ws = New NotesUIWorkspace
Dim db As notesdatabase
Set db = session.currentdatabase
Dim prof As NotesDocument
Set prof = db.GetProfileDocument( "archive database profile" )
Call prof.Remove( True )
Messagebox "Profile has been fixed." ,MB_OK, "Title"
End Sub